home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 16 / fpc225_3.zip / F-PCHELP.ZIP / WFL.HLP < prev    next >
Text File  |  1988-01-11  |  4KB  |  120 lines

  1. \ WFL.HLP       Window file selection.                  by Tom Zimmer
  2.  
  3. rootdir         ( --- a1 )
  4.         An array that holds a null terminated string that represents
  5.         the root directory.
  6.  
  7. b/fnam          ( --- n1 )
  8.         Bytes per filename entry. returns the value 14.
  9.  
  10. maxdir          ( --- n1 )
  11.         Return n1 the maximum number of directory entries we can
  12.         hold in memory. Dependant on current dictionary free space.
  13.  
  14. forg            top of file window display
  15. dlen            directory window length
  16. dirattrib       directory file attribute
  17.  
  18. #fls            number of files present
  19. curfl           current file number
  20. foff            Current offset into file list buffer.
  21.  
  22. >fadr           ( n1 --- a1 )
  23.         Index into the filename list, and return address of name n1.
  24.  
  25. .nam            ( n1 --- )
  26.         Display the name of name n1.
  27.  
  28. excludes        ( --- a1 )
  29.         Returns a1 the address of a counted string that holds sets
  30.         of three letter extensions that should be excluded from the
  31.         directory list.
  32.  
  33. exlist          ( --- a1 )
  34.         A variable that holds the address of a string of three
  35.         character extensions that are to be excluded from the
  36.         directory display.
  37.  
  38. exsrc           ( --- a1 )
  39.         A variable that points to the extension in the source string.
  40.  
  41. ?exclude        ( --- f1 )
  42.         Test name at pad to see if it is in the exclude list. Return
  43.         boolean true if it is in the list.
  44.  
  45. name>buf        ( --- )
  46.         Move name from the data transfer buffer to the directory
  47.         buffer.
  48.  
  49. $getdir         ( a1 --- )
  50.         Get a list of names from the current directory that match
  51.         the counted string a1, but exclude the names in the exclude
  52.         list.
  53.  
  54. getdir          ( --- )
  55.         Get all names in the current directory except the excluded
  56.         ones.
  57.  
  58. -ss             ( n1 --- )
  59.         Print a row of dashes of length n1.
  60.  
  61. -ll             ( l r len line --- )
  62.         A primitive for displaying a horizontal line with two
  63.         special characters on the ends.
  64.  
  65. showdrives      ( --- )
  66.         Display the drive select window.
  67.  
  68. showret         ( --- )
  69.         Display the commands available window.
  70.  
  71. showkeys        ( --- )
  72.         Display the keypad command keys available window.
  73.  
  74. pathbox         ( --- )
  75.         Display the path display box.
  76.  
  77. showpath        ( --- )
  78.         Display the PATH in the pathbox.
  79.  
  80. showdir         ( --- )
  81.         Display the current directory in a window.
  82.  
  83. nfl             ( --- )
  84.         Hilight the next file in the directory window list.
  85.  
  86. pfl             ( --- )
  87.         Hilight the previous file in the directory window list.
  88.  
  89. 0fl             ( --- )
  90.         hilight the first file in the directory window list.
  91.  
  92. efl             ( --- )
  93.         Hilight the last file int he directoryf window list.
  94.  
  95. delfl           ( --- )
  96.         Delete the currently hilighted file in the directory
  97.         window list. Prompts to be sure the user really want
  98.         to delete this file.
  99.  
  100. ndir            ( --- )
  101.         Prompt for user entry of a new path to show the directory of.
  102.  
  103. ndriv           ( n1 --- n1 )
  104.         Select n1 clipped to legal, as the current disk drive.
  105.         Re-display results of path, ans directory window.
  106.  
  107. keytests        ( n1 --- )
  108.         Test the key n1 for the various functions available.
  109.         Performs any function that matches the n1 value.
  110.  
  111. ?setdir         ( c1 --- c2 f1 )
  112.         Set the current directory as listed in the directory list
  113.         window as the current directory. Allows moving around in
  114.         the directory tree.
  115.  
  116. <getfile>       ( --- <a1> f1 )
  117.         Promps user to select a file from a window of files
  118.         as displayed.
  119.  
  120.